home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / etc / python2.6 / sitecustomize.py
Encoding:
Python Source  |  2010-12-26  |  155 b   |  8 lines

  1. # install the apport exception handler if available
  2. try:
  3.     import apport_python_hook
  4. except ImportError:
  5.     pass
  6. else:
  7.     apport_python_hook.install()
  8.